Platform Explorer / Nuxeo Platform 5.8

Component org.nuxeo.drive.listeners

Contributions

XML Source

<?xml version="1.0"?>
<component name="org.nuxeo.drive.listeners" version="1.0.0">

  <extension target="org.nuxeo.ecm.core.event.EventServiceComponent"
    point="listener">
    <documentation>
      Notify the NuxeoDriveManager service to invalidate
      it's cache when a document is deleted (physically or just the
      trash).

      @author Olivier Grisel
    </documentation>

    <listener name="nuxeoDriveCacheInvalidationListener" async="false"
      postCommit="false"
      class="org.nuxeo.drive.listener.NuxeoDriveCacheInvalidationListener"
      priority="300">
      <event>lifecycle_transition_event</event>
      <event>documentRemoved</event>
    </listener>

    <documentation>
      Handle document removal or root unregistration in order to be able to
      populate the audit log and hence compute consistent change
      summaries for each user.

      @author Olivier Grisel
    </documentation>
    <listener name="nuxeoDriveFileSystemDeletionListener" async="false"
      postCommit="false"
      class="org.nuxeo.drive.listener.NuxeoDriveFileSystemDeletionListener"
      priority="200">
      <event>beforeDocumentModification</event>
      <event>aboutToMove</event>
      <event>lifecycle_transition_event</event>
      <event>aboutToRemove</event>
      <event>aboutToUnRegisterRoot</event>
    </listener>

  </extension>

</component>